home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / System / DynamicArrayObjects / DynamicArrays.abs < prev    next >
Text File  |  1994-03-31  |  568b  |  19 lines

  1.  
  2.  
  3. CBig2D and CBigArray
  4. Eric Yiskis
  5.  
  6.  
  7. Intro:
  8.  
  9. Have you ever needed to create an array "on the fly" with an arbitrary size 
  10. or tried to create an array in Think-C that was larger than 32K?  ( No?
  11. then throw these files away and go back to what you were doing...)  Anyway,
  12. these classes use a handle and an array mapping function to create one and
  13. two dimensional arrays that can be created at runtime and be as large
  14. as the largest free block of memory you have.
  15.  
  16. I use them for fractal arrays; I let the user set the size so they have to
  17. be allocated on the fly.
  18.  
  19.